home *** CD-ROM | disk | FTP | other *** search
/ Disney Interactive Software Sampler 1997 to 1998 / Disney Interactive 1997-98 Software Sampler.iso / pc / media / mgicflor.dxr / 00029.ls < prev    next >
Encoding:
Text File  |  1997-10-17  |  429 b   |  26 lines

  1. on mouseEnter
  2.   global SpritMag, FixCursor
  3.   cursor(-1)
  4.   set FixCursor to 1
  5.   repeat with i = SpritMag to SpritMag + 6
  6.     set the visible of sprite i to 0
  7.     puppetSprite(i, 0)
  8.   end repeat
  9.   ShowBottom()
  10. end
  11.  
  12. on mouseLeave
  13.   global pVol
  14.   cursor(200)
  15.   OffLevel()
  16.   HideBottom()
  17.   RemiseStars()
  18. end
  19.  
  20. on mouseUp me
  21.   global pUp, pQuit
  22.   repeat with i = pUp to pQuit
  23.     set the visible of sprite (i + 6) to 0
  24.   end repeat
  25. end
  26.